home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-10-06 | 605 b | 35 lines | [TEXT/CWIE] |
- ///--------------------------------------------------------------------------------------
- // Stars.h
- //
- // By: Vern Jensen
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void main( void );
- void CreateSpriteWorld( void );
- void CreateSprites( void );
-
- void RunAnimation( void );
- void ShutDown( void );
- void MyCleanUpFunction( void );
-
- SW_FUNC void BallSpriteMoveProc(SpritePtr ballSpriteP);
-
- void SetUpStars( void );
- void MoveStars( void );
-
-
- #ifdef __cplusplus
- }
- #endif
-